home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000275_news@columbia.edu_Thu Nov 2 08:29:56 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18302
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Nov 1995 21:51:04 -0500
  3. Received: by apakabar.cc.columbia.edu id AA13589
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Nov 1995 21:51:02 -0500
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!news.uoregon.edu!xmission!news.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Can Kermit generate key-presses?
  9. Message-Id: <1995Nov2.142956.65735@cc.usu.edu>
  10. Date: 2 Nov 95 14:29:56 MDT
  11. References: <Pine.HPP.3.91.951030000148.24557B-100000@bluejay.creighton.edu> <Pine.ULT.3.91.951101184311.28875B-100000@chinook.halcyon.com>
  12. Organization: Utah State University
  13. Lines: 43
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <Pine.ULT.3.91.951101184311.28875B-100000@chinook.halcyon.com>, "Kathleen M. House" <kmhouse@halcyon.com> writes:
  17. > Hello, all,
  18. > I have a need for a batch program to simulate pressing a PF key.
  19.  
  20.     Are you sure you really mean BATCH, as in DOS' .BAT files?
  21. If so then that has nothing to do with Kermit; it's entirely a DOS matter.
  22. Maybe you mean a Kermit Take file. Take files execute at the Kermit prompt
  23. level, not during terminal emulation (Connect mode). There is no keyboard
  24. fancy stuff at the Kermit prompt level.
  25.  
  26. > I've gotten Kermit to generate the binary code for "ringing" the bell, and
  27.  
  28.     That's control code Control-g, binary 7. 
  29.  
  30. > piped that to a file that I can now include in any batch program.  The code
  31. > executes as soon as it is typed to the screen, and I've got a nice little 
  32. > bell-ringer whenever I want it.
  33. > Now I need an F-key presser. I've tried using show-key to display the 
  34.  
  35.     That is purely a terminal emulation matter. There is no association
  36. with Kermit prompt level nor DOS etc.
  37.  
  38. > decimal code, and then echoing that code.  For some reason, although the 
  39. > regular keys show up fine when their decimal code is echoed, the F and 
  40.  
  41.     Look at those values. They are ASCII printable characters. Special
  42. keys are not printable. VTxxx function keys do not send simple fixed codes;
  43. they are terminal emulation state dependent items. Please do have a very
  44. careful look at file msvibm.vt in the Kermit distribution kit.
  45.  
  46. > other function keys do not. The echo merely shows the graphic (not the key 
  47. > name) for that decimal code.  For example, echoing the code for F2 
  48. > produces <<.  When this is piped to a file, and that file typed to the 
  49. > screen, the code does not execute.
  50. > Does anyone know why the function keys behave differently and how to get 
  51. > one to execute in a batch program?
  52.  
  53.     Honestly, I have a big problem trying to understand what you are
  54. trying to accomplish. As mentioned above, DOS BATCH has nothing at all to
  55. do with Kermit.
  56.     Joe D.